Class RedbWindowedQueryable<TProps>

Assembly: redb.Core.dll

Implementation of queries with window functions

public class RedbWindowedQueryable<TProps> : IRedbWindowedQueryable<TProps> where TProps : class, new()

Inheritance

ObjectRedbWindowedQueryable<TProps>

Implements

Methods

SelectAsync<TResult>(Expression<Func<RedbObject<TProps>, TResult>>)

Projection with window functions.

public Task<List<TResult>> SelectAsync<TResult>(Expression<Func<RedbObject<TProps>, TResult>> selector)

ToSqlStringAsync<TResult>(Expression<Func<RedbObject<TProps>, TResult>>)

Returns SQL string for debugging.

public Task<string> ToSqlStringAsync<TResult>(Expression<Func<RedbObject<TProps>, TResult>> selector)

Constructors